home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / macros / latex209 / contrib / loggates / makefont < prev    next >
Text File  |  1992-06-14  |  424b  |  18 lines

  1. #!/bin/sh
  2. # A quick hack to make pk files.
  3. # Usage: makefont <fontfile>.
  4. # Makefont will delete all gf-files in the working directory.
  5. # This file is an example of how to generate the loggates font
  6. # (tfm- and pk-files). Consult your local TeX-guru if you have
  7. # problems doing this.
  8. for MAG in 0 # 0.5 1 2 3 4 5
  9. do
  10.    mf "\mode=localfont; mag=magstep${MAG}; input" $1
  11. done
  12. for GF in *gf
  13. do
  14.    gftopk -v $GF
  15.    rm $GF
  16. done
  17.  
  18.